std::floor
From Cppreference
| C++ Standard Library | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Numerics library | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Common mathematical functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Defined in header <cmath>
| ||
| float floor( float arg );
| ||
| double floor( double arg );
| ||
| long double floor( long double arg );
| ||
Computes nearest integer not greater than arg.
Contents |
[edit] Parameters
| arg | - | floating point value |
[edit] Return value
nearest integer not greater than arg
[edit] Notes
The integer value can be always represented by the given floating point type.
[edit] Example
#include <cmath> #include <iostream> int main() { std::cout << std::fixed; std::cout << std::floor(12.0) << '\n'; std::cout << std::floor(12.1) << '\n'; std::cout << std::floor(12.5) << '\n'; std::cout << std::floor(12.9) << '\n'; std::cout << std::floor(13.0) << '\n';}
Output:
12.000000 12.000000 12.000000 12.000000 13.000000
[edit] See also
| nearest integer not less than the given value (function) | ||
| nearest integer not greater in magnitude than the given value (function) | ||
| nearest integer, rounding away from zero in halfway cases (function) | ||